
/* position and dimensions of the navigator */
.navi {
    margin-left:328px;
    width:200px;
    height:16px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	display:block;
	font-size:1px;
	background-image: url(../img/navigator.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

/* mouseover state */
.navi a:hover {
    background-position:0 -8px;
}

/* active state (current page state) */
.navi a.active {
    background-position:0 -16px;
}

/* position and dimensions of the navigator2 */
.navi2 {
    background-color: #545454;
    height: 16px;
    margin-left: 0;
    padding-left: 100px;
    width: 152px;
}


/* items inside navigator2 */
.navi2 a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	display:block;
	font-size:1px;
	background-image: url(../img/navigator.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

/* mouseover state */
.navi2 a:hover {
    background-position:0 -8px;
}

/* active state (current page state) */
.navi2 a.active {
    background-position:0 -16px;
}